3cf6860b747fb59f0d743225d32449a2e6ff1965,bobas.businessobjectscommon/src/main/java/org/colorcoding/ibas/bobas/bo/UserFieldProxy.java,UserFieldProxy,convertValue,#DbFieldType#,68
Before Change
}
return DateTime.valueOf(this.getValueString());
} else if (type == DbFieldType.db_Decimal) {
if (this.getValueString() == null || this.getValueString() == "") {
return new Decimal("0");
}
return new Decimal(this.getValueString());
After Change
}
return DateTime.valueOf(this.getValueString());
} else if (type == DbFieldType.db_Decimal) {
if (this.getValueString() == null || this.getValueString().isEmpty()) {
return new Decimal("0");
}
return new Decimal(this.getValueString());